.crew-widget { width: 100%; padding: 16px; font-family: 'Pretendard', sans-serif; } .crew-title { text-align: center; font-weight: 700; font-size: 18px; color: #FFFFFF; margin-bottom: 12px; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); } .crew-empty { text-align: center; color: #666; padding: 20px; } .crew-list { display: flex; flex-direction: column; gap: 8px; } .crew-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.06); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); &.crew-rank-1 { background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), transparent); border-left: 3px solid #FFD700; } &.crew-rank-2 { background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), transparent); border-left: 3px solid #C0C0C0; } &.crew-rank-3 { background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), transparent); border-left: 3px solid #CD7F32; } } .crew-rank-num { width: 24px; font-weight: 800; font-size: 16px; text-align: center; flex-shrink: 0; &.top-1 { color: #FFD700; } &.top-2 { color: #C0C0C0; } &.top-3 { color: #CD7F32; } &.top-default { color: #888; } } .crew-icon { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: #444; } .crew-info { flex: 1; overflow: hidden; } .crew-nickname { font-weight: 600; color: #FFFFFF; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .crew-channel { font-size: 11px; color: #888; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .crew-stats { text-align: right; flex-shrink: 0; } .crew-amount { font-weight: 700; color: #FF6B35; font-size: 14px; } .crew-contribution { font-size: 11px; color: #A0D2FF; }